home *** CD-ROM | disk | FTP | other *** search
/ System Booster / System Booster.iso / Systemmonitors / AskTask / asktask.h < prev    next >
C/C++ Source or Header  |  1996-09-26  |  1KB  |  35 lines

  1. /* asktask.h */
  2. /*************************************************************************
  3.  ***                       AskTask Header File                         ***
  4.  *** Date begun: 1/4/89.                                               ***
  5.  *** Last modified: 2/4/89.                                            ***
  6.  *************************************************************************/
  7.  
  8. #include <exec/types.h>
  9. #include <exec/execbase.h>
  10. #include <exec/tasks.h>
  11.  
  12. #include <intuition/intuition.h>
  13. #include <proto/intuition.h>
  14. #include <proto/graphics.h>
  15. #include <proto/exec.h>
  16. #include <proto/dos.h>
  17.  
  18. #include <stdio.h>
  19. #include <string.h>
  20.  
  21. #define NUM_TASKS   30      /* Max num of tasks I will handle */
  22. #define TNAMESIZE   40      /* Task names on average 40 characters max */
  23. #define ENDNORMAL   3
  24.  
  25. #define G_REFRESH   1
  26. #define G_REF_TASK  2
  27. #define G_CHANGE_P  3
  28. #define G_REMOVE    4
  29. #define G_HELP      5
  30. #define G_QUIT      6
  31. #define G_NEXTPAGE  7
  32. #define G_PREVPAGE  8
  33. #define G_SETSIG    9
  34. #define G_EXITTASK  10
  35.